home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / lk_df.zip / MAKEFILE < prev    next >
Text File  |  1993-02-17  |  466b  |  27 lines

  1. # makefile for df.exe
  2. # Larry Kollar, 1 Feb 93
  3. # you'll see a "Warning: no stack" during linking.  This is normal.
  4. #
  5. # if you're porting this elsewhere, -mt is for tiny model
  6.  
  7. CC = tcc
  8. CFLAGS = -mt
  9. ASM = tasm
  10. ASMFLAGS = /mx
  11.  
  12. OBJS = df.obj ceh.obj numflopy.obj df_cmd.obj
  13.  
  14. default: df.exe
  15.  
  16. .c.obj:
  17.     $(CC) $(CFLAGS) -c {$< }
  18.  
  19. ceh.obj: ceh.asm
  20.     $(ASM) $(ASMFLAGS) ceh.asm
  21.  
  22. df.exe: $(OBJS)
  23.     $(CC) $(CFLAGS) -edf.exe $(OBJS)
  24.  
  25. clean:
  26.     rm $(OBJS)
  27.